home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / julian11.zip / JULIAN.H < prev    next >
Text File  |  1993-01-11  |  547b  |  30 lines

  1. #ifndef __STDIO_H__
  2. #define __STDIO_H__
  3. #include <stdio.h>
  4. #endif
  5.  
  6. #ifndef __STRING_H__
  7. #define __STRING_H__
  8. #include <string.h>
  9. #endif
  10.  
  11. #ifndef __STDLIB_H__
  12. #define __STDLIB_H__
  13. #include <stdlib.h>
  14. #endif
  15.  
  16. #ifndef __TIME_H__
  17. #define __TIME_H__
  18. #include <time.h>
  19. #endif
  20.  
  21. // DEFINES
  22. #define DAY_SECS 86400L
  23.  
  24. // PROTOTYPES
  25. int    date_plus(char *, char *, char *, time_t);
  26. time_t date_diff(char *, char *, char *);
  27. int    date_fm_jul(char *, time_t, char *);
  28. time_t date_to_jul(char *, char *);
  29. int    isleapyear(int);
  30.